From: Eli Zaretskii Date: Fri, 10 Oct 2014 09:38:48 +0000 (+0300) Subject: Fixed crash at startup by starting bidi_bracket_type_t from 1, not zero. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~23^2~3423^2~735^2~26 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f6d76d1c6cc380bd9cd8911214e18eca247c7bf4;p=emacs.git Fixed crash at startup by starting bidi_bracket_type_t from 1, not zero. --- diff --git a/src/dispextern.h b/src/dispextern.h index b7a4225221a..cfe834e572a 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1902,7 +1902,7 @@ typedef enum { member of unidata-prop-alist (in admin/unidata/unidata-gen.el) for Unicode character property `bracket-type'. */ typedef enum { - BIDI_BRACKET_NONE = 0, + BIDI_BRACKET_NONE = 1, BIDI_BRACKET_OPEN, BIDI_BRACKET_CLOSE } bidi_bracket_type_t;